home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-11-16 | 404 b | 21 lines |
- OBJS = main.obj init.obj move.obj map.obj expose.obj fb16.obj fb4.obj blkcpy.obj
- PROGRAM = win00003.exg
-
- CC = g:\hc386\bin\hc386
- ASM = g:\386asm\exe\386asm
- LINKER = g:\hc386\bin\386linkp
- RUN386 = d:\run386 -nocrt
- CFLAGS = -UDEBUG
-
- $(PROGRAM): $(OBJS)
- $(RUN386) $(LINKER) @files @libs -relexe $(PROGRAM) -publist byvalue
-
- .c.obj:
- $(CC) -c $(CFLAGS) $<
-
- .asm.obj:
- $(ASM) $<
-
- clean:
-
-